home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Pascal Super Library
/
Pascal Super Library (CW International)(1997).bin
/
LIBRARY
/
TOOLPAS2
/
CDTO.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1992-09-11
|
271b
|
13 lines
uses dos;
begin
if paramcount <> 1 then
begin
writeln('cdto D:\DIRECTORY');
writeln('Changes drive AND directory with a single command.');
writeln('Public domain by Samuel H. Smith, 9/11/92');
halt(1);
end;
chdir(paramstr(1));
end.